0785c99fe8d12e65bca3ee08a15b369cf3167603,clouddesigner/org.occiware.clouddesigner.occi.infrastructure.connector.vmware/src/org/occiware/clouddesigner/occi/infrastructure/connector/vmware/NetworkinterfaceConnector.java,NetworkinterfaceConnector,updateNetworkInterfaceAttributes,#,1466

Before Change


		}
		
		// Update the attributes via a transaction (or not if standalone).
		EntityUtils.updateAttributes(this, attrsToCreate, attrsToUpdate, attrsToDelete);
		
		this.setTitle(networkAdapterName);
		this.setState(adapterState);

After Change


			this.setMessage("No ip address setup.");
			
		}
		if (UIDialog.isStandAlone()) {
			// Headless environment.
			EntityUtilsHeadless.updateAttributes(this, attrsToCreate, attrsToUpdate, attrsToDelete);
			
		} else {
			// Gui environment
			EntityUtils.updateAttributes(this, attrsToCreate, attrsToUpdate, attrsToDelete);
		}
		
		this.setTitle(networkAdapterName);